home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 2
/
AACD 2.iso
/
AACD
/
Magazine
/
GraphicsCards
/
StormMesa
/
mklib.sunos5
< prev
next >
Wrap
Text File
|
1998-12-15
|
764b
|
37 lines
#!/bin/sh
# Make a shared lib for SunOS 5.x library file
#--identification------------------------------------------------------
# $Id: mklib.sunos5,v 1.1 1997/10/21 23:32:31 brianp Exp $
# $Log: mklib.sunos5,v $
# Revision 1.1 1997/10/21 23:32:31 brianp
# Initial revision
#
#--common--------------------------------------------------------------
# Usage: mklib libname major minor file.o ...
#
# First argument is name of output library (LIBRARY)
# Second arg is major version number (MAJOR)
# Third arg is minor version number (MINOR)
# Rest of arguments are object files (OBJECTS)
LIBRARY=$1
shift 1
MAJOR=$1
shift 1
MINOR=$1
shift 1
OBJECTS=$*
#--platform-------------------------------------------------------------
ld -G -o $LIBRARY $OBJECTS